home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000040_fdc@columbia.edu_Mon Jan 24 20:09:53 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: What about that gnu kermit, gkermit (circa 1999)?  Usable?  OK?
  5. Date: 24 Jan 2005 17:57:56 GMT
  6. Organization: Columbia University
  7. Lines: 27
  8. Message-ID: <slrncvadp4.i8q.fdc@sesame.cc.columbia.edu>
  9. References: <cqkui9$guk$1@panix1.panix.com> <slrncsu0q9.707.fdc@sesame.cc.columbia.edu> <2PEId.15089$8u5.13322@bgtnsc04-news.ops.worldnet.att.net> <slrncvaccq.e3n.fdc@sesame.cc.columbia.edu>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1106589476 485 128.59.59.56 (24 Jan 2005 17:57:56 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 24 Jan 2005 17:57:56 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15274
  17.  
  18. On 2005-01-24, Frank da Cruz <fdc@columbia.edu> wrote:
  19. : On 2005-01-23, The Eighth Doctor <drwho8__NOTME__@att.net> wrote: Yes,
  20. :: G-Kermit is indeed designed to last forever. However, for Slackware 10.0, it
  21. :: does not build correctly. I grabbed the compressed tar ball, and extracted
  22. :: it into a folder of the same name. Then ran make. According to this script
  23. :: file:
  24. :: ...
  25. :: cc -o gkermit gproto.o gkermit.o gunixio.o gcmdline.o
  26. :: gkermit.o(.text+0x59f): In function `sfile':
  27. :: undefined reference to `errno'
  28. :: ...
  29. :: Script done on Sat 22 Jan 2005 09:44:46 PM EST
  30. :
  31. :: It threw up an error at that location. I think it was the same location that
  32. :: I found for 9.1. Why the more GCC advances, the more times older programs
  33. :: throw basically the same errors, I do not know.
  34. ::
  35. : In gkermit.h, remove the line:
  36. :
  37. :   extern int errno;
  38. :
  39. Actually, you don't have to hack the source code, you can just build it
  40. with the ERRNO_H flag:
  41.  
  42.   make KFLAGS=-DERRNO_H posix
  43.  
  44. - Frank